home *** CD-ROM | disk | FTP | other *** search
/ Enter 2002 August / EnterCD 8_2002.iso / Internet / Adobe GoLive 6.0 / data1.cab / PF_AppDir_Mod_JScript_GlobalScripts / KeyAction.scpt < prev    next >
Encoding:
Text File  |  2002-03-28  |  254 b   |  10 lines

  1. CSKeyAction = new Array;
  2. function CSKeyPress(ev) {
  3.     var code;
  4.     if(IsIE()) code = event.keyCode;
  5.     else code = ev.which;
  6.     var act = CSKeyAction[code];
  7.     if(typeof(act) != "undefined")
  8.         CSAction (new Array(act));
  9. }
  10. document.onkeypress    = CSKeyPress;